home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / WimpSWIs / s / 12GetInfo3 < prev    next >
Text File  |  1995-08-26  |  1KB  |  47 lines

  1. ;
  2. ;       Title                  : Wimp Get Window Info (RISC OS 3).
  3. ;       System                 : Wimp Library
  4. ;       Version                : 1.0
  5. ;       Copyright              : (C) Sergio Monesi
  6. ;       Date                   : 26 Jan 1995
  7. ;       Author                 : Sergio Monesi
  8. ;
  9. ;       Function               : Get information about a window.
  10. ;                                Doesn't return icons (RISC OS 3 only)
  11. ;
  12. ;
  13. ;       Modification history.
  14. ;
  15. ;       Version                : (Reflect in header IDENT)
  16. ;       Date                   :
  17. ;       Author                 :
  18. ;       Changes                :
  19. ;
  20. ;
  21. ;============================================================================
  22. ;
  23. ;  Include files.
  24. ;
  25. ;============================================================================
  26. ;
  27.         GET     ^.h.regdefs
  28.         GET     ^.h.swinos
  29.         GET     ^.h.macros
  30. ;
  31. ;============================================================================
  32. ;
  33. ;  Code.
  34. ;
  35. ;============================================================================
  36. ;
  37.         PREAMBLE
  38.         STARTCODE Wimp_GetWindowInfoNoIcons
  39. ;
  40.         MOV     ip, lr
  41.         ORR     a2, a1, #1        ; set bit 0 of R1
  42.         SWI     SWI_Wimp_GetWindowInfo + XOS_Bit
  43.         MOVVC   a1, #0
  44.         MOVS    pc, ip
  45. ;
  46.         END
  47.